home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / remove10.zip / REMOVE.DOC < prev    next >
Text File  |  1991-12-04  |  2KB  |  112 lines

  1.  
  2.         
  3.  
  4.  
  5.     
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.                     REMOVE Basic Comments (') SYSTEM
  18.  
  19.                                    Version 1.00
  20.  
  21.                        For the IBM-PC XT/AT and Compatibles
  22.  
  23.             Copyright (C) 1991 - 1992, TheZoftWare Programming System
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.                                   Introduction
  69.  
  70.       Sometimes when you encounter a .BASic source code that you like and 
  71.    want to make use of it, but you find out that is too large in size   
  72.    because of some comments that you will not need when compiling and 
  73.    it's very tedious to remove line by line manually. That's way I created
  74.    this QuickBASIC Comment Remover that will scan your source .BAS file
  75.    in ASCII Format and delete all uneed comments.                           
  76.  
  77.       The use of this program is Very Easy and you will just need to supply  
  78.    the filename of the .BAS file as the following example: 
  79.  
  80.         C>REMOVE terminal.bas  <Return>                          
  81.  
  82.     This will remove most of the comments from the BASIC file 'TERMINAL.BAS'
  83.  
  84.  
  85.     DEFINT A-Z
  86.     ' This comment will be deleted by REMOVE.
  87.     ' This too.
  88.     FOR X=1 to 100
  89.     PRINT X
  90.     NEXT X
  91.     ' This Too, Will be removed.
  92.     END
  93.  
  94.    
  95.    This program is FreeWare and it's fully functional. If you have some
  96.    comments, suggestions or questions please write to: 
  97.  
  98.                           TheZoftWare PS
  99.               Attn. Manuel Godinez
  100.                           P.O. Box 8761
  101.                           Green Bay, WI 54302-8761.
  102.  
  103.  
  104.   NOTE: The address 1:139/520 (FidoNet) and Phone Number (414) 437-8843
  105.         are NO longer in service. You might get a hold of me by sending
  106.         a netmail to 1:139/0.
  107.  
  108.  
  109.  
  110.  
  111.  
  112.